836153b2c47d6e1d32175f7b8e19ef5dfeef1d3c,src/main/java/com/continuuity/data/engine/hbase/HBaseOVCTableHandle.java,HBaseOVCTableHandle,createNewTable,#number[]#,40

Before Change


  public OrderedVersionedColumnarTable createNewTable(byte[] tableName) {
    HBaseOVCTable table = null;
    try {
      table = new HBaseOVCTable(createTable(tableName), FAMILY,
          new HBaseIOExceptionHandler());
    } catch (IOException e) {
      exceptionHandler.handle(e);

After Change


  public OrderedVersionedColumnarTable createNewTable(byte[] tableName) {
    HBaseOVCTable table = null;
    try {
      createTable(tableName);
      table = new HBaseOVCTable(conf, tableName, FAMILY,
          new HBaseIOExceptionHandler());
    } catch (IOException e) {